home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-007.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  82 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12348);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CVE-2002-1363");
  13.  
  14.  name["english"] = "RHSA-2003-007: libpng";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated libpng packages are available which fix a buffer overflow
  21.   vulnerability.
  22.  
  23.   [Updated 06 Feb 2003]
  24.   Added fixed packages for Advanced Workstation 2.1
  25.  
  26.   The libpng package contains a library of functions for creating and
  27.   manipulating PNG (Portable Network Graphics) image format files. PNG
  28.   is a bit-mapped graphics format similar to the GIF format.
  29.  
  30.   Unpatched versions of libpng 1.2.1 and earlier do not correctly calculate
  31.   offsets, which leads to a buffer overflow and the possibility of arbitrary
  32.   code execution. This could be exploited by an attacker creating a
  33.   carefully crafted PNG file which could execute arbitrary code when the
  34.   victim views it.
  35.  
  36.   Packages within Red Hat Linux Advanced Server, such as Mozilla, make use of
  37.   the shared libpng library. All users are advised to upgrade to the errata
  38.   packages, which contain libpng 1.0.14 with a backported patch that corrects
  39.   this issue.
  40.  
  41.  
  42.  
  43.  
  44. Solution : http://rhn.redhat.com/errata/RHSA-2003-007.html
  45. Risk factor : High';
  46.  
  47.  script_description(english:desc["english"]);
  48.  
  49.  summary["english"] = "Check for the version of the libpng packages";
  50.  script_summary(english:summary["english"]);
  51.  
  52.  script_category(ACT_GATHER_INFO);
  53.  
  54.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  55.  family["english"] = "Red Hat Local Security Checks";
  56.  script_family(english:family["english"]);
  57.  
  58.  script_dependencies("ssh_get_info.nasl");
  59.  
  60.  script_require_keys("Host/RedHat/rpm-list");
  61.  exit(0);
  62. }
  63.  
  64. include("rpm.inc");
  65. if ( rpm_check( reference:"libpng-1.0.14-0.7x.4", release:"RHEL2.1") )
  66. {
  67.  security_hole(0);
  68.  exit(0);
  69. }
  70. if ( rpm_check( reference:"libpng-devel-1.0.14-0.7x.4", release:"RHEL2.1") )
  71. {
  72.  security_hole(0);
  73.  exit(0);
  74. }
  75.  
  76. if ( rpm_exists(rpm:"libpng-", release:"RHEL2.1") )
  77. {
  78.  set_kb_item(name:"CVE-2002-1363", value:TRUE);
  79. }
  80.  
  81. set_kb_item(name:"RHSA-2003-007", value:TRUE);
  82.